home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / ctrmm.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  440 b   |  16 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_ctrmm (const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side,
  7.          const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA,
  8.          const enum CBLAS_DIAG Diag, const int M, const int N,
  9.          const void *alpha, const void *A, const int lda, void *B,
  10.          const int ldb)
  11. {
  12. #define BASE float
  13. #include "source_trmm_c.h"
  14. #undef BASE
  15. }
  16.